:root {
    --primary: #6e00ff;
    --primary-light: #9d4dff;
    --secondary: #00f7ff;
    --dark: #090913;
    --darker: #131358;
    --light: #f0f0ff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
}

body {
    background-color: var(--darker);
    color: var(--light);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(110, 0, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 247, 255, 0.1) 0%, transparent 20%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Futuristic Header Styles */
.futuristic-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: var(--glass);
    border-bottom: 1px solid var(--glass-border);
}
.futuristic-header .container {
    display: flex; /* Enable flexbox */
    justify-content: space-between; /* Pushes logo to left, nav to right */
    align-items: center; /* Vertically centers content */
    /* Add a min-height to the container if your header doesn't have a fixed height
       to ensure vertical centering works as expected */
    min-height: 60px; /* Example: adjust based on your header's desired height */
}



.futuristic-header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(110, 0, 255, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.logo-icon {
    margin-right: 10px;
    font-size: 1.5rem;
}

.logo-text span {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

/* It should look like this */
.holographic-nav-toggle {
    display: none; /* <-- CHANGE THIS LINE */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 20px;
    z-index: 1001;
    color: var(--light);
}

.holographic-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
   
}

.nav-list a {
    color: var(--light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    color: var(--secondary);
}

.nav-list a.active {
    color: var(--primary-light);
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-list a:hover .nav-underline,
.nav-list a.active .nav-underline {
    width: 100%;
}

/* Dropdown Styles */
.auth-dropdown, .user-dropdown {
    position: relative;
}

.auth-dropdown-content, .user-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1f1f60;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    text-align: center;
}

.auth-dropdown:hover .auth-dropdown-content,
.user-dropdown:hover .user-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--glass);
    color: var(--secondary);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.auth-dropdown:hover .dropdown-arrow,
.user-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Cart Icon Styles */
.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* User Avatar Styles */
.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Holographic Effect */
.holographic-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(110, 0, 255, 0.1) 0%, 
        rgba(0, 247, 255, 0.1) 50%, 
        rgba(110, 0, 255, 0.1) 100%);
    opacity: 0.5;
    z-index: -1;
    animation: holographic-pulse 8s infinite alternate;
}

@keyframes holographic-pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .holographic-nav-toggle {
        display: flex;
    }
    
    .holographic-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 200px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.5s ease;
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
    }
    
    .holographic-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .auth-dropdown-content, .user-dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 10px 0 0 20px;
    }
    
    .holographic-nav-toggle.active .holographic-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .holographic-nav-toggle.active .holographic-line:nth-child(2) {
        opacity: 0;
    }
    
    .holographic-nav-toggle.active .holographic-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}
/* THIS IS THE CORRECTED CODE BLOCK */
/* ADD THIS ENTIRE BLOCK TO YOUR CSS FILE */

.holographic-line {
    width: 100%;
    height: 3px;
    background: var(--light); /* Use a visible color like white */
    border-radius: 3px;
    transition: all 0.3s ease;
}
.card-header .holographic-line {
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    margin-top: 15px;
    width: 100px;
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(110, 0, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(110, 0, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.btn-outline:hover {
    background: var(--glass-highlight);
    transform: translateY(-3px);
}

.btn-holo {
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.btn-holo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 65%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: holo-glow 3s infinite;
}

@keyframes holo-glow {
    0% {
        transform: rotate(30deg) translate(-30%, -30%);
    }
    100% {
        transform: rotate(30deg) translate(30%, 30%);
    }
}

.btn-hover-glow {
    position: relative;
    z-index: 1;
}

.btn-hover-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.btn-hover-glow:hover::after {
    opacity: 1;
}

/* Glass Cards */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--glass-highlight);
}

.holo-card {
    position: relative;
    overflow: hidden;
}

.holo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 65%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: holo-glow 6s infinite;
    pointer-events: none;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section */

/* Ensure the hero section and its content have sufficient space and visibility on mobile */
@media (max-width: 768px) {
    .futuristic-hero {
        padding-top: 80px; /* Adjust padding if header is covering content */
        padding-bottom: 80px; /* Ensure space below content */
        min-height: 50vh; /* Give the hero section a minimum height */
        display: flex;
        align-items: center; /* Vertically center content */
        justify-content: center; /* Horizontally center content */
        text-align: center; /* Center text within the hero content */
        
    }

    .hero-content {
        width: 100%; /* Ensure it takes full width */
        max-width: 90%; /* Prevent it from being too wide on very small screens */
        overflow: visible; /* Ensure content is not clipped by this container */
        position: relative; /* Establish a stacking context */
        z-index: 10; /* Bring hero content to front */
    }

    .hero-title {
        font-size: 2rem; /* Reduce font size further for better fit */
        line-height: 1.2; /* Adjust line height for readability */
        margin-bottom: 15px; /* Adjust spacing */
        z-index: 11; /* Ensure title is above other elements in hero-content */
        position: relative; /* Needed for z-index to work */
    }

    .typing-effect {
        display: inline-block; /* Change to inline-block to allow text wrapping within the line */
        min-height: unset; /* Remove fixed min-height, let content define height */
        overflow: visible; /* Ensure animated text is not clipped */
        white-space: normal; /* Allow text to wrap if it's too long */
    }

    .hero-subtitle {
        font-size: 0.9rem; /* Adjust subtitle font size */
        margin-bottom: 25px;
    }

    .hero-cta {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px; /* Add space between stacked buttons */
    }

    .hero-cta .btn {
        width: 80%; /* Make buttons take more width */
        margin: 0 auto; /* Center buttons if stacked */
    }
}
/* Hero Section */

.particle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Orbitron', sans-serif;
}

.typing-effect {
    display: block;
    min-height: 60px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    max-width: 200px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: 78px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--light);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scroll-animation 2s infinite;
}

@keyframes scroll-animation {
    0% {
        top: 5px;
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Features Section */
.futuristic-features {
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    text-align: center;
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 0, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.feature-card i {
    font-size: 2rem;
    color: var(--secondary);
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.feature-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 247, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover .feature-hover-effect {
    opacity: 1;
}

/* Courses Section */
.futuristic-courses {
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1639762681057-408e52192e55') no-repeat center center;
    background-size: cover;
    position: relative;
}

.futuristic-courses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.9);
    z-index: 0;
}

.futuristic-courses .container {
    position: relative;
    z-index: 1;
}

.courses-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.courses-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.course-card {
    min-width: 350px;
    scroll-snap-align: start;
    position: relative;
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.course-header {
    margin-bottom: 20px;
}

.course-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.course-header p {
    color: var(--secondary);
    font-size: 0.9rem;
}

.course-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
}

.course-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 26, 0.8), transparent);
    border-radius: 10px;
}

.course-features {
    list-style: none;
    margin-bottom: 20px;
}

.course-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.course-features i {
    color: var(--secondary);
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* Stats Section */
.futuristic-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--darker), var(--dark));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Orbitron', sans-serif;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Testimonials Section */
.futuristic-testimonials {
    padding: 100px 0;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: -15px;
    left: -15px;
}

.testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.author-rating {
    color: gold;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.slider-prev, .slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--glass-highlight);
    transform: translateY(-3px);
}

/* CTA Section */
.futuristic-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.futuristic-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 65%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: holo-glow 6s infinite;
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer Styles */
.futuristic-footer {
    background: var(--dark);
    color: var(--light);
    position: relative;
    padding-top: 100px;
    margin-top: 100px;
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%230a0a1a" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%230a0a1a" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%230a0a1a"/></svg>') no-repeat;
    background-size: cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    padding: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    font-family: 'Orbitron', sans-serif;
}

.footer-logo .logo-icon {
    margin-right: 10px;
    font-size: 1.5rem;
}

.footer-logo .logo-text span {
    color: var(--secondary);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.8rem;
    color: var(--secondary);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-contact i {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-top: 3px;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    background: var(--glass);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--light);
    outline: none;
}

.newsletter-form button {
    width: 50px;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--glass-border);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-payments {
    display: flex;
    gap: 15px;
}

.footer-payments i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-payments i:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
   
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-title .typing-effect {
        min-height: auto; /* Allow the height to adjust based on content */
    }
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .course-card {
        min-width: 280px;
    }
}

.hero-about {
            background: linear-gradient(135deg, #1d3557 0%, #3a0ca3 100%);
            color: white;
            padding: 51px 0;
            position: relative;
            overflow: hidden;
            /* margin-top: 80px; */
        }

        .hero-about::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(29, 53, 87, 0.9), rgba(58, 12, 163, 0.9));
            opacity: 1;
        }

        .hero-about .container {
            position: relative;
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            margin-top: 125px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        /* Futuristic About Page Styles */
.hero-about {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--darker), var(--dark));
    overflow: hidden;
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
    margin-top: 15px;
    animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Mission Section */
.futuristic-mission {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mission-text {
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
}

.highlight {
    color: var(--secondary);
    font-weight: 600;
}

.mission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mission-card {
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 0, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.mission-card i {
    font-size: 1.8rem;
    color: var(--secondary);
    position: relative;
    z-index: 1;
}

.mission-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 247, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mission-card:hover .mission-hover-effect {
    opacity: 1;
}

/* Values Section */
.futuristic-values {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark), var(--darker));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.value-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="%2300f7ff" opacity="0.5"/><circle cx="50" cy="30" r="1" fill="%2300f7ff" opacity="0.5"/><circle cx="80" cy="20" r="1" fill="%2300f7ff" opacity="0.5"/><circle cx="30" cy="70" r="1" fill="%2300f7ff" opacity="0.5"/><circle cx="70" cy="80" r="1" fill="%2300f7ff" opacity="0.5"/></svg>');
    background-size: 100% 100%;
    opacity: 0.3;
    z-index: 0;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Team Section */
.futuristic-team {
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1639762681057-408e52192e55') no-repeat center center;
    background-size: cover;
    position: relative;
}

.futuristic-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.9);
    z-index: 0;
}

.futuristic-team .container {
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
}

.avatar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 0, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.team-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    position: relative;
    z-index: 1;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.role {
    display: block;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

/* CTA Hologram Effect */
.cta-hologram {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: hologram-pulse 6s infinite alternate;
}

@keyframes hologram-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-about {
        height: auto;
        padding: 100px 0;
    }
    
    .mission-features {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}
/* Futuristic Contact Page Styles */
.hero-contact {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--darker), var(--dark));
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
    margin-top: 15px;
    animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Main Contact Container */
.futuristic-contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: -50px auto 100px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .futuristic-contact-container {
        grid-template-columns: 1fr;
    }
}

/* Holographic Contact Card */
.holo-contact-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.holo-contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 65%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: holo-glow 6s infinite;
    pointer-events: none;
}

@keyframes holo-glow {
    0% {
        transform: rotate(30deg) translate(-30%, -30%);
    }
    100% {
        transform: rotate(30deg) translate(30%, 30%);
    }
}

.card-header {
    margin-bottom: 30px;
    position: relative;
}

.card-header h2 {
    font-size: 2rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header h2 i {
    color: var(--secondary);
}


/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Info Items */
.info-item {
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-icon {
    position: relative;
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    padding: 13px;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 0, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    position: relative;
    z-index: 1;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light);
}

.info-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.info-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 247, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-item:hover .info-hover-effect {
    opacity: 1;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    font-family: 'Orbitron', sans-serif;
    margin: 10px 0;
}

.stat-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.stat-particle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="%2300f7ff" opacity="0.3"/><circle cx="50" cy="30" r="1" fill="%2300f7ff" opacity="0.3"/><circle cx="80" cy="20" r="1" fill="%2300f7ff" opacity="0.3"/><circle cx="30" cy="70" r="1" fill="%2300f7ff" opacity="0.3"/><circle cx="70" cy="80" r="1" fill="%2300f7ff" opacity="0.3"/></svg>');
    background-size: 100% 100%;
    opacity: 0.3;
    z-index: 0;
}

.floating {
    animation: floating 3s ease-in-out infinite alternate;
}

@keyframes floating {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* Holographic Map Container */
.holo-map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.holo-map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 0, 255, 0.1), rgba(0, 247, 255, 0.1));
    z-index: 1;
    pointer-events: none;
}

.map-hologram {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: hologram-pulse 4s infinite alternate;
    pointer-events: none;
}

@keyframes hologram-pulse {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}

/* Responsive Adjustments */


@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
 /* Styling for the main form container (the glass card) */
        .contact-form-section {
            padding: 30px;
            border-radius: 15px;
            margin-top: 40px; /* Space between info cards and form */
            display: flex;
            flex-direction: column;
            gap: 20px; /* Space between form header and form groups */
        }

        /* Styling for individual form groups (label + input/textarea) */
        .futuristic-form .form-group {
            margin-bottom: 20px; /* Space between form fields */
        }

        /* Styling for labels */
        .futuristic-form label {
            display: block; /* Make labels take full width */
            margin-bottom: 8px; /* Space between label and input */
            font-weight: 500;
            color: var(--light); /* Light text color for labels */
            font-size: 1.1em;
        }

        /* Styling for text and email input fields and textarea */
        .futuristic-form input[type="text"],
        .futuristic-form input[type="email"],
        .futuristic-form textarea {
            width: 100%; /* Full width within its container */
            padding: 12px 15px;
            border: 1px solid var(--glass-border); /* Subtle border */
            background-color: var(--glass); /* Translucent background */
            border-radius: 8px; /* Rounded corners */
            color: var(--light); /* Light text color for input */
            font-size: 1em;
            outline: none; /* Remove default outline */
            transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition on focus */
        }

        /* Styling for input/textarea on focus */
        .futuristic-form input[type="text"]:focus,
        .futuristic-form input[type="email"]:focus,
        .futuristic-form textarea:focus {
            border-color: var(--primary-light); /* Highlight border color */
            box-shadow: 0 0 0 3px rgba(110, 0, 255, 0.3); /* Subtle glow effect */
        }

        /* Specific styling for textarea */
        .futuristic-form textarea {
            resize: vertical; /* Allow vertical resizing only */
            min-height: 120px; /* Minimum height for textarea */
        }

        /* Styling for the submit button */
        .futuristic-form .btn {
            width: auto; /* Allow button to size naturally based on content */
            padding: 12px 30px;
            font-size: 1.1em;
            margin-top: 10px; /* Space above the button */
        }

        /* Adjust grid for contact info and form on larger screens */
        

        .contact-info-section {
            display: grid;
            grid-template-columns: 1fr; /* Stack info items by default */
            gap: 20px;
        }

        /* Make form take full width on smaller screens, half on larger */
        @media (min-width: 992px) {
            
            .contact-info-section {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Two columns for info items */
            }
            .contact-form-section {
                grid-column: span 1; /* Ensure form takes one column */
            }
        }

        /* Map section styling */
        .futuristic-map-section {
            padding-top: 60px; /* Add padding similar to other sections */
        }

        .holo-map-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            box-shadow: 0 5px 25px rgba(0, 247, 255, 0.15); /* Light blue glow */
            margin-top: 40px;
        }

        .holo-map-container iframe {
            display: block; /* Remove extra space below iframe */
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(9, 9, 19, 0.7), rgba(9, 9, 19, 0.7)); /* Dark overlay */
            z-index: 1;
            pointer-events: none; /* Allow interaction with map below */
        }

        .map-hologram {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(0, 247, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(110, 0, 255, 0.1) 0%, transparent 20%);
            mix-blend-mode: overlay;
            z-index: 2;
            pointer-events: none;
        }
        .hero-login {
            min-height: 50vh; /* Make hero section shorter for login */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 80px 0; /* Add padding for content */
        }

        .hero-login .hero-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Main content section for the login card */
        .login-content-section {
            padding: 60px 0; /* Adjust padding for the section */
            display: flex;
            justify-content: center; /* Center the login card */
            align-items: center;
            min-height: calc(100vh - 50vh - 100px); /* Adjust height based on hero and footer */
        }

        /* Styling for the login card */
        .login-card {
            max-width: 450px;
            width: 100%;
            padding: 40px;
            text-align: center;
            position: relative;
            z-index: 3; /* Ensure it's above particles */
            margin-top: 60px; /* Space from section header */
            margin-left: auto; /* Explicitly center horizontally */
            margin-right: auto; /* Explicitly center horizontally */
        }

        .login-card .logo-text-login {
            font-family: 'Orbitron', sans-serif; /* Consistent logo font */
            font-size: 2.5rem;
            color: var(--light);
            text-decoration: none;
            margin-bottom: 30px;
            display: block;
            position: relative;
            z-index: 1;
        }

        .login-card .logo-text-login span {
            color: var(--primary); /* Accent color for 'Edu' */
        }

        /* Styling for form groups */
        .login-form .form-group-custom {
            margin-bottom: 20px;
            text-align: left; /* Align labels and inputs to the left */
        }

        /* Styling for labels */
        .login-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--light);
            font-size: 1.1em;
        }

        /* Styling for input fields */
        .login-form .input-field {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--glass-border);
            background-color: var(--glass);
            border-radius: 8px;
            color: var(--light);
            font-size: 1em;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .login-form .input-field:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(110, 0, 255, 0.3);
        }

        /* Styling for checkbox group */
        .login-form .checkbox-group {
            display: flex;
            align-items: center;
            margin-top: -10px; /* Adjust spacing */
            margin-bottom: 25px; /* Space before button */
        }

        .login-form .checkbox-label {
            display: flex;
            align-items: center;
            font-size: 1em;
            color: var(--light);
            cursor: pointer;
        }

        .login-form .checkbox-label input[type="checkbox"] {
            margin-right: 10px;
            width: 18px;
            height: 18px;
            accent-color: var(--primary); /* Style checkbox with primary color */
        }

        /* Styling for the login button */
        .login-form .login-btn {
            width: 100%; /* Full width button */
            padding: 12px 0;
            font-size: 1.2em;
            margin-bottom: 20px; /* Space below button */
            display: flex; /* Use flex for icon alignment */
            align-items: center;
            justify-content: center;
            gap: 10px; /* Space between text and icon */
        }

        /* Styling for link texts */
        .login-form .link-text {
            color: var(--light);
            font-size: 0.95em;
            margin-top: 15px;
        }

        .login-form .link-text a {
            color: var(--primary-light); /* Link color */
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .login-form .link-text a:hover {
            color: var(--secondary); /* Hover color */
        }

        .login-form .error-message-text {
            color: #ff4d4d; /* Red color for error messages */
            font-size: 0.9em;
            margin-top: 5px;
            display: block;
        }

        /* Session message styling (reusing existing classes) */
        .sessioneAlertMsg {
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-weight: 600;
            opacity: 0; /* Hidden by default */
            transition: opacity 0.5s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            background-color: var(--glass);
        }

        .sessioneAlertMsg.active {
            opacity: 1; /* Show when active */
        }

        .sessioneAlertMsg.success-message {
            color: #4CAF50; /* Green for success */
            box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
        }

        .sessioneAlertMsg.error-message {
            color: #f44336; /* Red for error */
            box-shadow: 0 0 15px rgba(244, 67, 54, 0.3);
        }
         .hero-register {
            min-height: 50vh; /* Make hero section shorter for register */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 80px 0; /* Add padding for content */
        }

        .hero-register .hero-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Main content section for the register card */
        .register-content-section {
            padding: 60px 0; /* Adjust padding for the section */
            display: flex;
            justify-content: center; /* Center the register card */
            align-items: center;
            min-height: calc(100vh - 50vh - 100px); /* Adjust height based on hero and footer */
            flex-direction: column; /* Stack header and card */
        }

        /* Styling for the register card */
        .register-card {
            max-width: 800px; /* Wider card for more fields */
            width: 100%;
            padding: 40px;
            text-align: center;
            position: relative;
            z-index: 3; /* Ensure it's above particles */
             margin-top: 40px; /* Space from section header */
            margin-left: auto; /* Explicitly center horizontally */
            margin-right: auto; /* Explicitly center horizontally */
            
        }

        /* Styling for form rows and columns */
        .futuristic-form .form-row {
            display: flex;
            flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
            gap: 20px; /* Space between columns */
            margin-bottom: 20px; /* Space between rows */
        }

        .futuristic-form .form-col {
            flex: 1 1 calc(50% - 10px); /* Two columns, with gap */
            min-width: 280px; /* Minimum width before wrapping */
        }

        /* Styling for form groups */
        .futuristic-form .form-group-custom {
            margin-bottom: 0; /* No margin-bottom here, handled by form-row gap */
            text-align: left; /* Align labels and inputs to the left */
            text-align: center; /* Center text for form groups */
        }

        /* Styling for labels */
        .futuristic-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--light);
            font-size: 1.1em;
            text-align: left; /* Center labels */
        }

        /* Styling for input fields and textarea */
        .futuristic-form .input-field {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--glass-border);
            background-color: var(--glass);
            border-radius: 8px;
            color: var(--light);
            font-size: 1em;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .futuristic-form .input-field:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(110, 0, 255, 0.3);
        }

        .futuristic-form textarea.input-field {
            resize: vertical;
            min-height: 100px; /* Adjust min-height for address field */
        }

        /* Styling for the register button */
        .futuristic-form .register-btn {
            width: auto; /* Auto width for consistent button styling */
            padding: 12px 30px;
            font-size: 1.2em;
            margin-top: 20px; /* Space above button */
            display: inline-flex; /* Use inline-flex for icon alignment */
            align-items: center;
            justify-content: center;
            gap: 10px; /* Space between text and icon */
        }

        /* Styling for link texts */
        .futuristic-form .link-text {
            color: var(--light);
            font-size: 0.95em;
            margin-top: 15px;
        }

        .futuristic-form .link-text a {
            color: var(--primary-light); /* Link color */
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .futuristic-form .link-text a:hover {
            color: var(--secondary); /* Hover color */
        }

        /* Error message styling */
        .message-box.error-message {
            color: #f44336; /* Red for error */
            box-shadow: 0 0 15px rgba(244, 67, 54, 0.3);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-weight: 600;
            border: 1px solid var(--glass-border);
            background-color: var(--glass);
            text-align: left;
        }
        .message-box.error-message ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .message-box.error-message ul li {
            margin-bottom: 5px;
        }
        .message-box.error-message ul li:last-child {
            margin-bottom: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .futuristic-form .form-col {
                flex: 1 1 100%; /* Stack columns on smaller screens */
            }
        }
        /* Add this to your existing CSS file, e.g., templatemo-eduwell-style.css */

.courses-grid.three-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust minmax as needed */
    gap: 30px; /* Space between cards */
    padding: 20px 0;
}

/* Adjustments for responsiveness if needed */
@media (max-width: 992px) {
    .courses-grid.three-columns {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .courses-grid.three-columns {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .courses-grid.three-columns {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
}
/* --- Cart Page Specific Styles (Add to templatemo-eduwell-style.css) --- */

/* Cart Table Container */
.cart-table-container {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent background */
    backdrop-filter: blur(10px); /* Glass effect */
    border-radius: 20px; /* Rounded corners */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* Stronger shadow */
    margin-bottom: 40px; /* Space below table */
    overflow-x: auto; /* For responsive tables on small screens */
}

/* Cart Table Basic Styling */
.cart-table {
    width: 100%;
    border-collapse: collapse; /* Collapse borders between cells */
    color: var(--light-text); /* Light text for readability */
    font-size: 1rem;
    min-width: 600px; /* Ensure table doesn't get too squished on smaller viewports */
}

.cart-table th,
.cart-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separators */
}

/* Table Header Styling */
.cart-table thead th {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly darker header background */
    color: var(--accent); /* Accent color for headers */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Table Body Rows */
.cart-table tbody tr:last-child td {
    border-bottom: none; /* No border on the last row */
}

.cart-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03); /* Subtle hover effect */
}

/* Specific Column Alignment */
.cart-table td:nth-child(1) { /* S.No */
    width: 50px;
    text-align: center;
}

.cart-table td:nth-child(4) { /* Quantity */
    width: 80px;
    text-align: center;
}

.cart-table td:nth-child(3), /* Price */
.cart-table td:nth-child(6) { /* Subtotal */
    width: 120px;
    text-align: right;
    font-weight: 500;
}

/* Table Footer Styling */
.cart-table tfoot td {
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Thicker border for total */
}

.cart-table tfoot td.text-left {
    text-align: left;
    color: var(--primary-color);
}

/* Cart Actions (buttons) */
.cart-actions {
    text-align: right; /* Align buttons to the right */
    padding-top: 30px !important; /* Ensure sufficient space above buttons */
}

.cart-actions .btn {
    margin-left: 15px;
    min-width: 180px; /* Give buttons a consistent width */
}

.cart-actions .btn span {
    margin-right: 8px; /* Space between text and icon */
}

/* Responsive adjustments for the table */
@media (max-width: 768px) {
    .cart-table {
        font-size: 0.9rem;
    }

    .cart-table th,
    .cart-table td {
        padding: 10px 15px;
    }

    .cart-actions {
        text-align: center; /* Center buttons on smaller screens */
    }

    .cart-actions .btn {
        margin: 10px 5px; /* Adjust margin for stacked buttons */
        width: calc(100% - 20px); /* Make buttons full width minus some padding */
    }
}

@media (max-width: 480px) {
    .cart-table {
        min-width: unset; /* Allow table to shrink further if needed */
    }

    .cart-table-container {
        padding: 15px;
    }
}

/* Ensure existing futuristic styles are properly linked and applied */
/* e.g., var(--accent), var(--primary-color), var(--light-text) should be defined in your CSS variables */
/* --- Orders Page Specific Styles (Add to templatemo-eduwell-style.css) --- */

/* Orders Table Container - Reuses cart-table-container styles */
.orders-table-container {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent background */
    backdrop-filter: blur(10px); /* Glass effect */
    border-radius: 20px; /* Rounded corners */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* Stronger shadow */
    margin-bottom: 40px; /* Space below table */
    overflow-x: auto; /* For responsive tables on small screens */
}

/* Orders Table Basic Styling - Reuses cart-table styles structure */
.orders-table {
    width: 100%;
    border-collapse: collapse; /* Collapse borders between cells */
    color: var(--light-text); /* Light text for readability */
    font-size: 1rem;
    min-width: 700px; /* Adjust min-width if needed for more columns */
}

.orders-table th,
.orders-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separators */
}

/* Table Header Styling */
.orders-table thead th {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly darker header background */
    color: var(--accent); /* Accent color for headers */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Table Body Rows */
.orders-table tbody tr:last-child td {
    border-bottom: none; /* No border on the last row */
}

.orders-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03); /* Subtle hover effect */
}

/* Specific Column Alignment and Widths */
.orders-table td:nth-child(1) { /* S.No */
    width: 50px;
    text-align: center;
}

.orders-table td:nth-child(2) { /* Order ID */
    width: 150px;
}

.orders-table td:nth-child(4) { /* Amount */
    width: 120px;
    text-align: right;
    font-weight: 500;
}

.orders-table td:nth-child(5) { /* Status */
    width: 120px;
    text-align: center;
}

.orders-table td:nth-child(6) { /* Actions */
    width: 160px;
    text-align: center;
}

/* Course List within table cell */
.orders-table .course-list {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin: 0;
}

.orders-table .course-list li {
    padding: 2px 0;
    font-size: 0.95rem;
    color: var(--light-text);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px; /* Pill shape */
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--dark-background); /* Text color for badges */
}

.status-badge-completed {
    background-color: var(--success-color); /* Green for completed */
}

.status-badge-pending {
    background-color: var(--warning-color); /* Yellow/Orange for pending */
}

/* Actions Buttons */
.orders-table td .btn {
    font-size: 0.9rem;
    padding: 8px 15px;
    display: inline-flex; /* Align icon and text */
    align-items: center;
    justify-content: center;
}

.orders-table td .btn i {
    margin-right: 8px; /* Space between icon and text */
}

/* Pagination Styling */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding: 15px 20px;
    border-radius: 10px; /* Rounded corners */
    /* Reuse glass-card styles if you want a subtle background for pagination */
    background-color: rgba(255, 255, 255, 0.03); /* Subtle background */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Subtle border */
}

/* Pagination links within the custom-bootstrap-4 template */
/* These styles will apply to the generated Laravel pagination links */
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.75rem 1rem;
    color: var(--primary-color); /* Link color */
    text-decoration: none;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    border-radius: 8px; /* Rounded page items */
    transition: all 0.3s ease;
}

.page-link:hover {
    color: var(--light-text);
    background-color: var(--accent); /* Hover background */
    border-color: var(--accent);
}

.page-item.active .page-link {
    z-index: 3;
    color: var(--dark-background); /* Active link text color */
    background-color: var(--primary-color); /* Active link background */
    border-color: var(--primary-color);
}

.page-item.disabled .page-link {
    color: rgba(255, 255, 255, 0.3); /* Disabled link color */
    pointer-events: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments for the table */
@media (max-width: 768px) {
    .orders-table {
        font-size: 0.9rem;
    }

    .orders-table th,
    .orders-table td {
        padding: 10px 15px;
    }

    /* Mobile-first table stacking for smaller screens if min-width is too restrictive */
    .orders-table thead {
        display: none; /* Hide header on small screens */
    }

    .orders-table, .orders-table tbody, .orders-table tr, .orders-table td {
        display: block; /* Make table elements act as blocks */
        width: 100%;
    }

    .orders-table tr {
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .orders-table td {
        text-align: right !important; /* Align content to the right */
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1); /* Dashed separator */
        position: relative;
        padding-left: 50%; /* Space for data-label */
    }

    .orders-table td::before {
        content: attr(data-label); /* Use data-label as pseudo-element */
        position: absolute;
        left: 15px;
        width: calc(50% - 30px);
        text-align: left;
        font-weight: 600;
        color: var(--primary-color); /* Label color */
    }

    .orders-table td:last-child {
        border-bottom: none;
    }

    .orders-table td:nth-child(1), /* S.No */
    .orders-table td:nth-child(4), /* Amount */
    .orders-table td:nth-child(5), /* Status */
    .orders-table td:nth-child(6) { /* Actions */
        width: 100%; /* Make these full width on mobile */
        text-align: right !important;
    }

    .orders-table .course-list {
        text-align: right; /* Align course list to right */
    }

    .pagination-container {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .orders-table {
        min-width: unset; /* Allow table to shrink further if needed */
    }

    .orders-table-container {
        padding: 15px;
    }
}
/* Styling for the main content block within sections like Privacy Policy, Terms of Service */
.futuristic-courses .section-content {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent background for a subtle glass effect */
    border-radius: 15px; /* Rounded corners for the glass-card look */
    padding: 40px; /* Ample padding inside the content area */
    margin-top: 30px; /* Space from the section header */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); /* Futuristic shadow */
    backdrop-filter: blur(8px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(8px); /* Safari support for backdrop-filter */
    border: 1px solid rgba(255, 255, 255, 0.18); /* Subtle border */
    color: var(--light-text-color, #e0e0e0); /* Light text color for readability on dark backgrounds */
    line-height: 1.8; /* Increased line height for better readability of long texts */
    font-size: 1.05em; /* Slightly larger font size */
    max-width: 900px; /* Limit content width for readability */
    margin-left: auto; /* Center the content block */
    margin-right: auto; /* Center the content block */
    position: relative; /* Needed for any pseudo-elements or absolute positioning within */
    overflow: hidden; /* Ensures content respects border-radius */
}

/* Ensure headings within section-content are styled correctly */
.futuristic-courses .section-content h1,
.futuristic-courses .section-content h2,
.futuristic-courses .section-content h3,
.futuristic-courses .section-content h4,
.futuristic-courses .section-content h5,
.futuristic-courses .section-content h6 {
    color: var(--primary-color, #00f7ff); /* Use your primary/accent color for headings */
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: 700;
}

.futuristic-courses .section-content h1 { font-size: 2.2em; }
.futuristic-courses .section-content h2 { font-size: 1.8em; }
.futuristic-courses .section-content h3 { font-size: 1.5em; }

/* Styling for paragraphs */
.futuristic-courses .section-content p {
    margin-bottom: 1em;
}

/* Styling for lists */
.futuristic-courses .section-content ul,
.futuristic-courses .section-content ol {
    margin-bottom: 1em;
    padding-left: 25px; /* Indent list items */
}

.futuristic-courses .section-content ul li,
.futuristic-courses .section-content ol li {
    margin-bottom: 0.5em;
}

/* Styling for links within the content */
.futuristic-courses .section-content a {
    color: var(--accent, #6e00ff); /* Use your accent color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.futuristic-courses .section-content a:hover {
    color: var(--primary-color, #00f7ff); /* Change color on hover */
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .futuristic-courses .section-content {
        padding: 25px; /* Reduce padding on smaller screens */
        margin-top: 20px;
    }
    .futuristic-courses .section-content h1 { font-size: 1.8em; }
    .futuristic-courses .section-content h2 { font-size: 1.5em; }
}

@media (max-width: 480px) {
    .futuristic-courses .section-content {
        padding: 15px; /* Further reduce padding on very small screens */
    }
    .futuristic-courses .section-content h1 { font-size: 1.5em; }
    .futuristic-courses .section-content h2 { font-size: 1.2em; }
    .futuristic-courses .section-content p,
    .futuristic-courses .section-content ul li,
    .futuristic-courses .section-content ol li {
        font-size: 0.95em;
    }
}
/* Styling for the Thank You card */
.thankyou-section .thankyou-card {
    text-align: center;
    padding: 50px 30px;
    max-width: 600px;
    margin: 40px auto; /* Center the card and provide spacing */
    background-color: rgba(255, 255, 255, 0.05); /* Subtle transparent background */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); /* Futuristic shadow */
    backdrop-filter: blur(8px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.18); /* Subtle border */
    color: var(--light-text-color, #e0e0e0); /* Light text color */
}

/* Icon styling */
.thankyou-section .thankyou-icon {
    font-size: 5em; /* Large icon size */
    color: var(--success-color, #00ff00); /* Use a vibrant success color, adjust as needed */
    margin-bottom: 20px;
    display: block; /* Ensure it takes full width and centers */
}

/* Heading within the card */
.thankyou-section .thankyou-card h2 {
    color: var(--primary-color, #00f7ff); /* Use primary color for the heading */
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Paragraph text within the card */
.thankyou-section .thankyou-card p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Button styling within the card */
.thankyou-section .thankyou-card .btn-primary {
    padding: 12px 30px;
    font-size: 1.05em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px; /* Consistent button styling */
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .thankyou-section .thankyou-card {
        padding: 30px 20px;
        margin: 30px auto;
    }
    .thankyou-section .thankyou-icon {
        font-size: 4em;
    }
    .thankyou-section .thankyou-card h2 {
        font-size: 1.8em;
    }
    .thankyou-section .thankyou-card p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .thankyou-section .thankyou-card {
        padding: 20px 15px;
        margin: 20px auto;
    }
    .thankyou-section .thankyou-icon {
        font-size: 3em;
    }
    .thankyou-section .thankyou-card h2 {
        font-size: 1.5em;
    }
}
/* Common styles for content sections (login, register, forget) */
/* These properties ensure the card is vertically centered and correctly positioned below the header */
.forget-content-section {
    display: flex; /* Use flexbox for centering */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    min-height: calc(100vh - 100px); /* Ensures the section takes up most of the viewport height, minus header height */
    padding-top: 100px; /* Explicitly pushes content down to clear the fixed header */
    padding-bottom: 80px; /* Provides consistent bottom padding */
    position: relative; /* Establishes a stacking context for elements like particles */
    z-index: 1; /* Ensures content is above the particle background */
    text-align: center; /* Centers text within the section */
}

/* General .section class for consistent page padding */
.section {
    padding: 80px 0; /* Default top and bottom padding for all sections */
    position: relative;
    z-index: 1;
}

/* Base styling for all glass-effect cards (login, register, forget) */
.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Specific dimensions and centering for the form cards */
.forget-card {
    max-width: 500px; /* Consistent maximum width for all form cards */
    width: 100%;
    margin: 0 auto; /* Ensures horizontal centering within their containers */
}

/* Common styling for input fields across all form cards */
.forget-card .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
      width: 83%;
}

.forget-card .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.25rem rgba(110, 0, 255, 0.25);
}

.forget-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Common styling for primary buttons across all form cards */
.forget-card .btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.05em;
    width: 63%;
    margin-top: 10px;
}

.forget-card .btn-primary:hover {
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.6), 0 0 30px rgba(110, 0, 255, 0.6);
    transform: translateY(-2px);
}

/* Common styling for logos within the form cards */
.forget-card .logo {
    margin-bottom: 30px;
}

.forget-card .logo .login-logo {
    max-width: 150px;
    height: auto;
}

/* Common styling for headings within the form cards */
.forget-card .user-register-heading {
    font-size: 2em;
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 700;
}

/* Common styling for help blocks / error messages */
.forget-card .help-block {
    color: #ffcccc;
    font-size: 0.9em;
    margin-top: 5px;
    display: block;
    text-align: left;
}

/* Common message box styles for session alerts (success/error) */
.message-box {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: left;
    transition: all 0.5s ease-in-out;
    opacity: 0; /* Hidden by default for animation */
    transform: translateY(-10px);
    visibility: hidden;
}

.message-box.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.message-box.success-message {
    background-color: rgba(0, 255, 0, 0.2);
    color: #ccffcc;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.message-box.error-message {
    background-color: rgba(255, 0, 0, 0.2);
    color: #ffcccc;
    border: 1px solid rgba(255, 0, 0, 0.3);
}
/* Main Quiz Report Section (content area) */
.quiz-report-section {
    padding: 80px 0; /* Consistent with other .section elements */
    position: relative;
    z-index: 1;
    text-align: center; /* Center the card itself, content inside can be left-aligned */
}

/* Report Card (main container for results details) */
.report-card {
    max-width: 900px; /* Wider than login/register cards to accommodate table content */
    width: 100%;
    margin: 0 auto; /* Center the card horizontally */
    padding: 40px; /* Consistent padding with other glass cards */
    text-align: left; /* Align text content inside the card to left by default */
    /* .glass-card class already applied in HTML handles background, border, blur, shadow */
}

/* Quiz Report Header within the card */
.quiz-report-header {
    margin-bottom: 30px;
}

.quiz-report-header .main-block-heading {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--secondary); /* Using secondary color for headings for consistency */
    margin-bottom: 10px;
    text-align: center; /* Center the heading within the card */
}

/* Marks Summary Section (e.g., "Marks Obtained", "Total Marks") */
.marks-summary {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    justify-content: center; /* Center items when they wrap */
    gap: 20px; /* Space between individual marks items */
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03); /* Subtle inner glass background for the summary area */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.marks-item {
    text-align: center;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05); /* Slightly more opaque glass for individual items */
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-grow: 1; /* Allow items to grow and fill space within flex container */
    min-width: 250px; /* Minimum width before items wrap to next line */
}

.marks-item h3 {
    font-size: 1.3em;
    color: var(--light);
    margin-bottom: 5px;
    font-weight: 500;
}

.marks-item .marks-value {
    font-size: 1.8em;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary)); /* Gradient text for emphasis */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* Essential for gradient text to apply correctly */
}

/* Responsive Table Styling for Quiz Answers */
.table-responsive-custom {
    overflow-x: auto; /* Enables horizontal scrolling on small screens if table content overflows */
    margin-top: 30px;
}

.report-table {
    width: 100%;
    border-collapse: separate; /* Use separate to allow border-radius on rows/cells */
    border-spacing: 0 10px; /* Adds space between table rows for card-like appearance */
    margin-bottom: 0;
}

.report-table thead th {
    background-color: var(--primary); /* Use primary color for header background */
    color: var(--light);
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15); /* Subtle border for separation */
}

/* Rounded corners for table header */
.report-table thead th:first-child {
    border-top-left-radius: 10px;
}
.report-table thead th:last-child {
    border-top-right-radius: 10px;
}

.report-table tbody tr {
    background: rgba(255, 255, 255, 0.04); /* Subtle glass effect for each row */
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: hidden; /* Ensures border-radius is visible */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.report-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.08); /* Slightly more opaque on hover */
}

.report-table tbody td {
    padding: 15px 20px;
    color: var(--light);
    border: none; /* No individual cell borders, rely on row background for separation */
    vertical-align: top; /* Align content to top for longer text in cells */
    word-wrap: break-word; /* Ensure long words wrap within cells */
}

/* Rounded corners for table body rows (bottom) */
.report-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
.report-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

/* Specific styling for correct and incorrect answer rows */
.report-table .correct-row {
    background-color: rgba(0, 255, 0, 0.07); /* Light green tint for correct rows */
}

.report-table .incorrect-row {
    background-color: rgba(255, 0, 0, 0.07); /* Light red tint for incorrect rows */
}

.report-table .correct-answer-text {
    color: #6aff6a; /* Brighter green for correct answer text */
    font-weight: 500;
}

.report-table .your-answer-text {
    font-weight: 500;
}

/* For incorrect rows, make user's answer stand out as wrong */
.report-table .incorrect-row .your-answer-text {
    color: #ff6a6a; /* Brighter red for incorrect user answer text */
}

/* General styles for message boxes (Ensuring consistency across all types) */
.message-box {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: left;
    transition: all 0.5s ease-in-out;
    opacity: 0; /* Hidden by default for animation */
    transform: translateY(-10px);
    visibility: hidden;
}

.message-box.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.message-box.success-message {
    background-color: rgba(0, 255, 0, 0.2);
    color: #ccffcc;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.message-box.error-message {
    background-color: rgba(255, 0, 0, 0.2);
    color: #ffcccc;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* New message box types (ensure these are also defined for consistency) */
.message-box.info-message {
    background-color: rgba(0, 191, 255, 0.2); /* Light blue tint */
    color: #ccf2ff;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.message-box.warning-message {
    background-color: rgba(255, 165, 0, 0.2); /* Orange tint */
    color: #ffe0b3;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

/* --- Responsive Adjustments for Smaller Screens --- */
@media (max-width: 768px) {
    .hero-about .hero-title {
        font-size: 2.5em; /* Adjust hero title for smaller screens */
    }

    .hero-about .hero-subtitle {
        font-size: 1em;
        margin-bottom: 20px; /* Reduce margin */
    }

    .quiz-report-header .main-block-heading {
        font-size: 1.8em; /* Adjust section heading for smaller screens */
    }

    .marks-summary {
        flex-direction: column; /* Stack marks items vertically on small screens */
        align-items: stretch; /* Stretch items to full width */
        gap: 15px; /* Reduce gap */
        padding: 15px;
    }

    .marks-item {
        min-width: unset; /* Remove min-width constraint */
        width: 100%; /* Make items take full width */
    }

    .report-table thead {
        display: none; /* Hide table headers on small screens for card-like view */
    }

    .report-table, .report-table tbody, .report-table tr, .report-table td {
        display: block; /* Make table elements behave like blocks for responsiveness */
        width: 100%;
    }

    .report-table tr {
        margin-bottom: 20px; /* Add space between card-like rows */
        border: 1px solid rgba(255, 255, 255, 0.1); /* Add a border to each row to simulate a card */
        border-radius: 10px;
        overflow: hidden; /* Ensure border-radius applies properly */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .report-table tbody td {
        text-align: right; /* Align content to the right */
        padding-left: 50%; /* Make space for data-label pseudo-element */
        position: relative;
    }

    .report-table tbody td::before {
        content: attr(data-label); /* Display data-label as pseudo-element (e.g., "Question", "Correct Answer") */
        position: absolute;
        left: 15px;
        width: calc(50% - 30px); /* Adjust width for the label */
        text-align: left;
        font-weight: 700;
        color: var(--secondary); /* Label color */
    }

    /* Ensure rounded corners apply to responsive table rows as well */
    .report-table tbody tr:first-child {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .report-table tbody tr:last-child {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
}
